2
תגובות
היי אשמח לעזרה
פתח
alexmelo
,
היי חברה יצרתי טופס צור קשר שעובד מעולה אבל ביקשו ממני לבצע כמה דברים בטופס של אבטחה ואני לא יודע מה הם
1. Remove HTML and PHP tags
2. Check for alpha-numeric only input and remove irregular chars like $ ' "
/ <>
3. Escape sanitized input to be on the safe side.
4. Add captcha or hidden field and check its empty to avoid bots.
5. Close mail PHP function in your own function an call it explicitly with
sanitized input as argument.
אשמח לדעת איך אני עושה אותם ומה הם
תודה מראש
1. Remove HTML and PHP tags
2. Check for alpha-numeric only input and remove irregular chars like $ ' "
/ <>
3. Escape sanitized input to be on the safe side.
4. Add captcha or hidden field and check its empty to avoid bots.
5. Close mail PHP function in your own function an call it explicitly with
sanitized input as argument.
אשמח לדעת איך אני עושה אותם ומה הם
תודה מראש
2 תשובות
1. strip_tags
2. str_replace
3. mysql_real_escape_string או אחיותה..
4. captcha, מה הבעיה?
5. mail
עוד משהו?